From a829b26de1b6e399c1ce3430fbeb191770e709f3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 1 May 2016 10:52:31 -0400 Subject: [PATCH] wayland: Tag the event source with the acutal display name --- gdk/wayland/gdkeventsource.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gdk/wayland/gdkeventsource.c b/gdk/wayland/gdkeventsource.c index dcd10a1292..bb22e00195 100644 --- a/gdk/wayland/gdkeventsource.c +++ b/gdk/wayland/gdkeventsource.c @@ -131,7 +131,8 @@ _gdk_wayland_display_event_source_new (GdkDisplay *display) source = g_source_new (&wl_glib_source_funcs, sizeof (GdkWaylandEventSource)); - name = g_strdup_printf ("GDK Wayland Event source (%s)", "display name"); + name = g_strdup_printf ("GDK Wayland Event source (%s)", + gdk_display_get_name (display)); g_source_set_name (source, name); g_free (name); wl_source = (GdkWaylandEventSource *) source; -- 2.30.2